home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -in_the_mag- / basics / amos / intuiextend20b.lha / distribution / exemples / RTStringReq.asc < prev    next >
Text File  |  1980-03-10  |  761b  |  33 lines

  1. '**************************************
  2. '                                     *
  3. '     IntuiExtend.Lib 2.0/@1995-98    *
  4. '                                     *
  5. '          by CIERP Philippe.         *
  6. '                                     *
  7. '          from AMIGAzette 83         *
  8. '                                     *
  9. '**************************************
  10. '
  11. ' Command
  12. '  -Rt Lib Open
  13. '  -Rt String Req
  14. '  -Rt Lib Close 
  15. '  
  16. Screen Open 0,640,256,2,$8000
  17. Curs Off : Flash Off : Cls 0
  18. '
  19. Amos To Back 
  20. 'Ouverture de la reqTools.library
  21. E=Rt Lib Open
  22. 'Ouverture impossible
  23. If E=0 Then End 
  24. '
  25. B$=Rt String Req("Bonjour,","Lucien ???",30,2,2)
  26. Print ">";B$;"<"
  27. Print : Print "Pressez une touche..."
  28. Amos To Front 
  29. Wait Key 
  30. '
  31. 'Refermer la librairie 
  32. Rt Lib Close 
  33.